home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
FROMUTS
/
PERL
/
Perl
/
Lib
/
Importenv
< prev
next >
Wrap
Text File
|
1990-08-13
|
351b
|
17 lines
;# $Header: importenv.pl,v 3.0.1.1 90/08/09 03:56:38 lwall Locked $
;# This file, when interpreted, pulls the environment into normal variables.
;# Usage:
;# require 'importenv.pl';
;# or
;# #include <importenv.pl>
local($tmp,$key) = '';
foreach $key (keys(ENV)) {
$tmp .= "\$$key = \$ENV{'$key'};" if $key =~ /^[A-Za-z]\w*$/;
}
eval $tmp;
1;